copyWithCompanion method

CallCredentialsRow copyWithCompanion(
  1. CallCredentialsCompanion data
)

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,
  );
}