toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final customEventTypes = this.customEventTypes;
  final description = this.description;
  final documentationLink = this.documentationLink;
  final iconLocation = this.iconLocation;
  final launchStage = this.launchStage;
  final name = this.name;
  final searchTags = this.searchTags;
  final type = this.type;
  return {
    'customEventTypes': ?customEventTypes,
    'description': ?description,
    'documentationLink': ?documentationLink,
    'iconLocation': ?iconLocation,
    'launchStage': ?launchStage,
    'name': ?name,
    'searchTags': ?searchTags,
    'type': ?type,
  };
}