OpenChannel constructor
Implementation
OpenChannel({
required this.participantCount,
required this.operators,
required String channelUrl,
String name = '',
String coverUrl = '',
int? createdAt,
String data = '',
String customType = '',
bool isFrozen = false,
bool isEphemeral = false,
}) : super(
channelUrl: channelUrl,
name: name,
coverUrl: coverUrl,
createdAt: createdAt,
data: data,
customType: customType,
isFrozen: isFrozen,
isEphemeral: isEphemeral,
fromCache: false,
dirty: false,
);