toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final channelTopic = this.channelTopic;
  final createTime = this.createTime;
  final deleteTime = this.deleteTime;
  final description = this.description;
  final displayName = this.displayName;
  final isActive = this.isActive;
  final lastReplayId = this.lastReplayId;
  final name = this.name;
  final updateTime = this.updateTime;
  return {
    'channelTopic': ?channelTopic,
    'createTime': ?createTime,
    'deleteTime': ?deleteTime,
    'description': ?description,
    'displayName': ?displayName,
    'isActive': ?isActive,
    'lastReplayId': ?lastReplayId,
    'name': ?name,
    'updateTime': ?updateTime,
  };
}