copy static method
Implementation
static MeState copy(
MeState old, {
String? displayName,
String? id,
bool? shareInProgress,
bool? webcamInProgress,
bool? presenterMode,
List<String>? presenterConsumerId,
}) {
return MeState(
displayName: displayName ?? old.displayName,
id: id ?? old.id,
shareInProgress:
shareInProgress != null ? shareInProgress : old.shareInProgress,
webcamInProgress:
webcamInProgress != null ? webcamInProgress : old.webcamInProgress,
presenterConsumerIds: presenterConsumerId ?? old.presenterConsumerIds,
);
}