toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (coordinate != null) 'coordinate': coordinate!,
      if (data != null) 'data': data!,
      if (delimiter != null) 'delimiter': delimiter!,
      if (html != null) 'html': html!,
      if (type != null) 'type': type!,
    };