CompanyResponse.fromResponse constructor
CompanyResponse.fromResponse(
- Response response
Implementation
CompanyResponse.fromResponse(Response response)
: super.fromResponse(response) {
if (response.statusCode == 200) {
company = Company.fromJson(response.data);
}
}