toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final description = this.description;
  final eventSchemaUri = this.eventSchemaUri;
  final filteringAttributes = this.filteringAttributes;
  final type = this.type;
  return {
    'description': ?description,
    'eventSchemaUri': ?eventSchemaUri,
    'filteringAttributes': ?filteringAttributes,
    'type': ?type,
  };
}