copyWith method

StartScheduledGroupCall copyWith({
  1. int? groupCallId,
})

Implementation

StartScheduledGroupCall copyWith({
  int? groupCallId,
}) =>
    StartScheduledGroupCall(
      groupCallId: groupCallId ?? this.groupCallId,
    );