copyWithCompanion method

RefreshSecretRow copyWithCompanion(
  1. RefreshSecretsCompanion data
)

Implementation

RefreshSecretRow copyWithCompanion(RefreshSecretsCompanion data) {
  return RefreshSecretRow(
    userId: data.userId.present ? data.userId.value : this.userId,
    refresh: data.refresh.present ? data.refresh.value : this.refresh,
    access: data.access.present ? data.access.value : this.access,
  );
}