BaseResp.fromJson constructor
Implementation
factory BaseResp.fromJson(Map<String, dynamic> json) => BaseResp(
statusCode: json['statusCode'],
status: json['status'],
errorMessage: json['errorMessage'],
errorDescription: json['errorDescription'],
);