toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final image = this.image;
  final maps = this.maps;
  final retrievedContext = this.retrievedContext;
  final web = this.web;
  return {
    'image': ?image,
    'maps': ?maps,
    'retrievedContext': ?retrievedContext,
    'web': ?web,
  };
}