WatchList.fromJson constructor
Implementation
factory WatchList.fromJson(Map<String, dynamic> json) => WatchList(
watching: (json['watching'] as List).map((e) => e as CaseFolded).toList(),
online: (json['online'] as List).map((e) => e as CaseFolded).toList(),
);