UpdateUserProfile.fromJson constructor

UpdateUserProfile.fromJson(
  1. Map<String, dynamic> json
)

Implementation

UpdateUserProfile.fromJson(Map<String, dynamic> json) {
  altIsdCode = json['altIsdCode'];
  contactName = json['contactName'];
  companyName = json['companyName'];
  altMobileNumber = json['altMobileNumber'];
  firstName = json['firstName'];
  lastName = json['lastName'];
}