UserAuthResponse.fromJson constructor
UserAuthResponse.fromJson(
- dynamic json
Implementation
UserAuthResponse.fromJson(dynamic json) {
success = json["success"];
token = json["token"];
uid = json["uid"];
}