copyWith method
Implementation
MonoNewCustomerModel copyWith({
String? name,
String? email,
MonoNewCustomerIdentity? identity,
}) {
return MonoNewCustomerModel(
name: name ?? this.name,
email: email ?? this.email,
identity: identity ?? this.identity,
);
}