toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final acknowledgementRequired = this.acknowledgementRequired;
  final field = this.field;
  final noticeMessage = this.noticeMessage;
  final noticeValue = this.noticeValue;
  return {
    'acknowledgementRequired': ?acknowledgementRequired,
    'field': ?field,
    'noticeMessage': ?noticeMessage,
    'noticeValue': ?noticeValue,
  };
}