copyWith method
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,
);