CompanyResponse.fromResponse constructor

CompanyResponse.fromResponse(
  1. Response response
)

Implementation

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