UserProfile.fromJson constructor
Implementation
UserProfile.fromJson(Map<String, dynamic> json)
: this.userFname = ifNullReturnEmpty(json['user_fname']),
this.userLname = ifNullReturnEmpty(json['user_lname']),
this.userEmail = ifNullReturnEmpty(json['user_email']),
this.userPhone = ifNullReturnEmpty(json['user_phone']),
this.userId = json['user_id'].toString();