Aidra Connect 10.0.2+16
Aidra Connect Mobile Application
Loading...
Searching...
No Matches
faq_entity.dart
Go to the documentation of this file.
1class FAQEntity {
2 final bool? active;
3 final String? answer;
4 final int? id;
5 final String? name;
6
7 const FAQEntity({
8 this.active,
9 this.answer,
10 this.id,
11 this.name,
12 });
13}
final bool active
final int id
final String name
final String answer
const FAQEntity({ this.active, this.answer, this.id, this.name, })