copyWithCompanion method

TokenRow copyWithCompanion(
  1. TokensCompanion data
)

Implementation

TokenRow copyWithCompanion(TokensCompanion data) {
  return TokenRow(
    userId: data.userId.present ? data.userId.value : this.userId,
    credentials:
        data.credentials.present ? data.credentials.value : this.credentials,
  );
}