copyWith method
Implementation
ItemImportRequestUserAuth copyWith({String? userId, String? authToken}) {
return ItemImportRequestUserAuth(
userId: userId ?? this.userId, authToken: authToken ?? this.authToken);
}
ItemImportRequestUserAuth copyWith({String? userId, String? authToken}) {
return ItemImportRequestUserAuth(
userId: userId ?? this.userId, authToken: authToken ?? this.authToken);
}