copyWithCompanion method
Implementation
CallCredentialsRow copyWithCompanion(CallCredentialsCompanion data) {
return CallCredentialsRow(
callId: data.callId.present ? data.callId.value : this.callId,
credentials:
data.credentials.present ? data.credentials.value : this.credentials,
);
}