CommandSendAction.fromJson constructor

CommandSendAction.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory CommandSendAction.fromJson(Map<String, dynamic> json) => CommandSendAction(
  target: json['target'] as String,
  text: json['text'] as String,
);