toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final coordinate = this.coordinate;
  final data = this.data;
  final delimiter = this.delimiter;
  final html = this.html;
  final type = this.type;
  return {
    'coordinate': ?coordinate,
    'data': ?data,
    'delimiter': ?delimiter,
    'html': ?html,
    'type': ?type,
  };
}