toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final body = this.body;
  final displayInterval = this.displayInterval;
  final header = this.header;
  final id = this.id;
  final kind = this.kind;
  final localizedBody = this.localizedBody;
  final localizedHeader = this.localizedHeader;
  final messageType = this.messageType;
  return {
    'body': ?body,
    'displayInterval': ?displayInterval,
    'header': ?header,
    'id': ?id,
    'kind': ?kind,
    'localizedBody': ?localizedBody,
    'localizedHeader': ?localizedHeader,
    'messageType': ?messageType,
  };
}