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