CommandSetNick.fromJson constructor

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

Implementation

factory CommandSetNick.fromJson(Map<String, dynamic> json) => CommandSetNick(
  nick: json['nick'] as String,
);