toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final attributes = this.attributes;
  final data = this.data;
  final topicName = this.topicName;
  return {'attributes': ?attributes, 'data': ?data, 'topicName': ?topicName};
}