toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final dateValue = this.dateValue;
  final displayName = this.displayName;
  final id = this.id;
  final integerValue = this.integerValue;
  final longTextValue = this.longTextValue;
  final reason = this.reason;
  final selectionListValue = this.selectionListValue;
  final selectionValue = this.selectionValue;
  final textListValue = this.textListValue;
  final textValue = this.textValue;
  final type = this.type;
  final unsetValue = this.unsetValue;
  final userListValue = this.userListValue;
  final userValue = this.userValue;
  return {
    'dateValue': ?dateValue,
    'displayName': ?displayName,
    'id': ?id,
    'integerValue': ?integerValue,
    'longTextValue': ?longTextValue,
    'reason': ?reason,
    'selectionListValue': ?selectionListValue,
    'selectionValue': ?selectionValue,
    'textListValue': ?textListValue,
    'textValue': ?textValue,
    'type': ?type,
    'unsetValue': ?unsetValue,
    'userListValue': ?userListValue,
    'userValue': ?userValue,
  };
}