CommandSendNotice.fromJson constructor

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

Implementation

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