fromJson static method
Implementation
static Auth fromJson(dynamic json) {
return Auth(
message: json['message'],
code: json['code'],
data: json['data'] == null ? null : Data.fromJson(json['data']));
}
static Auth fromJson(dynamic json) {
return Auth(
message: json['message'],
code: json['code'],
data: json['data'] == null ? null : Data.fromJson(json['data']));
}