copyWith method

CallCredentialsRow copyWith({
  1. String? callId,
  2. String? credentials,
})

Implementation

CallCredentialsRow copyWith({String? callId, String? credentials}) =>
    CallCredentialsRow(
      callId: callId ?? this.callId,
      credentials: credentials ?? this.credentials,
    );