RelationshipManagerData.fromJson constructor

RelationshipManagerData.fromJson(
  1. dynamic json
)

Implementation

RelationshipManagerData.fromJson(dynamic json) {
  _masterUserId = json['master_user_id'];
  _name = json['name'];
  _email = json['email'];
  _contactNo = json['contact_no'];
  _type = json['type'];
}