copyWith method

RefreshSecretRow copyWith({
  1. String? userId,
  2. String? refresh,
  3. String? access,
})

Implementation

RefreshSecretRow copyWith({
  String? userId,
  String? refresh,
  String? access,
}) => RefreshSecretRow(
  userId: userId ?? this.userId,
  refresh: refresh ?? this.refresh,
  access: access ?? this.access,
);