Profile.fromJson constructor

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

Implementation

Profile.fromJson(Map<String, dynamic> json) {
  user = json["user"];
  accountGid = json["accountGid"];
  portalGid = json["portalGid"];
  test = json["test"];
}