ChannelMin constructor Null safety
- {required String id,
- required String name,
- String? englishName,
- required ChannelType type,
- String? photo}
Returns a new ChannelMin instance.
Implementation
ChannelMin({
required this.id,
required this.name,
this.englishName,
required this.type,
this.photo,
});