toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final assignable = this.assignable;
  final channelId = this.channelId;
  final title = this.title;
  return {
    'assignable': ?assignable,
    'channelId': ?channelId,
    'title': ?title,
  };
}