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