toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  return {
    'selectID': selectID,
    'title': title,
    'value': value,
    'selectionList': selectionList?.map((e) => e?.toJson()).toList(),
  };
}