copyWith method

TokenRow copyWith({
  1. String? userId,
  2. String? credentials,
})

Implementation

TokenRow copyWith({String? userId, String? credentials}) => TokenRow(
      userId: userId ?? this.userId,
      credentials: credentials ?? this.credentials,
    );