copyWith method
Implementation
QuickbooksCategory copyWith({
String? id,
String? fullyQualifiedName,
String? domain,
String? name,
String? syncToken,
bool? sparse,
bool? active,
}) {
return QuickbooksCategory(
id: id ?? this.id,
fullyQualifiedName: fullyQualifiedName ?? this.fullyQualifiedName,
domain: domain ?? this.domain,
name: name ?? this.name,
syncToken: syncToken ?? this.syncToken,
sparse: sparse ?? this.sparse,
active: active ?? this.active,
);
}