copyWith method

ToggleGroupCallEnabledStartNotification copyWith({
  1. int? groupCallId,
  2. bool? enabledStartNotification,
})

Implementation

ToggleGroupCallEnabledStartNotification copyWith({
  int? groupCallId,
  bool? enabledStartNotification,
}) =>
    ToggleGroupCallEnabledStartNotification(
      groupCallId: groupCallId ?? this.groupCallId,
      enabledStartNotification:
          enabledStartNotification ?? this.enabledStartNotification,
    );