toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final bot = this.bot;
  final commandId = this.commandId;
  final commandName = this.commandName;
  final triggersDialog = this.triggersDialog;
  final type = this.type;
  return {
    'bot': ?bot,
    'commandId': ?commandId,
    'commandName': ?commandName,
    'triggersDialog': ?triggersDialog,
    'type': ?type,
  };
}