copyWith method

QuickbooksContactInfos copyWith({
  1. String? type,
  2. QuickbooksPhoneNumber? telephone,
})

Implementation

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