copyWith method
Implementation
MonoNewCustomerIdentity copyWith({
  String? type,
  String? number,
}) {
  return MonoNewCustomerIdentity(
    type: type ?? this.type,
    number: number ?? this.number,
  );
}
MonoNewCustomerIdentity copyWith({
  String? type,
  String? number,
}) {
  return MonoNewCustomerIdentity(
    type: type ?? this.type,
    number: number ?? this.number,
  );
}