copyWith method

GroupCallInfo copyWith({
  1. int? groupCallId,
  2. String? joinPayload,
})

Implementation

GroupCallInfo copyWith({int? groupCallId, String? joinPayload}) =>
    GroupCallInfo(
      groupCallId: groupCallId ?? this.groupCallId,
      joinPayload: joinPayload ?? this.joinPayload,
    );