toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final date = this.date;
  final integer = this.integer;
  final selection = this.selection;
  final selectionList = this.selectionList;
  final text = this.text;
  final textList = this.textList;
  final user = this.user;
  final userList = this.userList;
  return {
    'date': ?date,
    'integer': ?integer,
    'selection': ?selection,
    'selectionList': ?selectionList,
    'text': ?text,
    'textList': ?textList,
    'user': ?user,
    'userList': ?userList,
  };
}