copyWith method

MonoNewCustomerIdentity copyWith({
  1. String? type,
  2. String? number,
})

Implementation

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