copyWith method
Implementation
QuickbooksContactInfos copyWith({
String? type,
QuickbooksPhoneNumber? telephone,
}) {
return QuickbooksContactInfos(
type: type ?? this.type,
telephone: telephone ?? this.telephone,
);
}
QuickbooksContactInfos copyWith({
String? type,
QuickbooksPhoneNumber? telephone,
}) {
return QuickbooksContactInfos(
type: type ?? this.type,
telephone: telephone ?? this.telephone,
);
}