copyWith method

ItemImportRequestUserAuth copyWith({
  1. String? userId,
  2. String? authToken,
})

Implementation

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