copyWith method

RelationshipManagerData copyWith({
  1. String? masterUserId,
  2. String? name,
  3. String? email,
  4. String? contactNo,
  5. String? type,
})

Implementation

RelationshipManagerData copyWith({  String? masterUserId,
  String? name,
  String? email,
  String? contactNo,
  String? type,
}) => RelationshipManagerData(  masterUserId: masterUserId ?? _masterUserId,
  name: name ?? _name,
  email: email ?? _email,
  contactNo: contactNo ?? _contactNo,
  type: type ?? _type,
);