toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  return {
    'why_choose_me_title': title,
    'why_choose_me_reason': reason.map((e) => e).toList(),
  };
}