CommandUnwatchNicks.fromJson constructor

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

Implementation

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