toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
    json[r'id'] = this.id;
    json[r'command'] = this.command;
    json[r'mentor'] = this.mentor;
    json[r'bot'] = this.bot;
  return json;
}