UserAuthResponse.fromJson constructor

UserAuthResponse.fromJson(
  1. dynamic json
)

Implementation

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