ResponseAuthUser.fromJson constructor

ResponseAuthUser.fromJson(
  1. dynamic json
)

Implementation

ResponseAuthUser.fromJson(dynamic json) {
  _status = json['status'] != null ? Status.fromJson(json['status']) : null;
  _data = json['data'] != null ? User.fromJson(json['data']) : null;
}