CommandWatchNicks.fromJson constructor

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

Implementation

factory CommandWatchNicks.fromJson(Map<String, dynamic> json) => CommandWatchNicks(
  nicks: (json['nicks'] as List).map((e) => e as String).toList(),
);