class SupportItem {
final String title;
final String answer;
SupportItem(this.title, this.answer);
}