OpenChannel constructor
OpenChannel({})
WARNING: Do not use default constructor to initialize manually
Implementation
OpenChannel({
required this.participantCount,
required this.operators,
required String channelUrl,
String? name,
String? coverUrl,
User? creator,
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,
);