Created
April 26, 2020 10:58
-
-
Save IhwanID/c875550fb1f24fda48b9d795d39a57f4 to your computer and use it in GitHub Desktop.
repository
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:pinjollist/repository/company_api_provider.dart'; | |
| import 'package:pinjollist/model/company.dart'; | |
| class CompanyRepository { | |
| CompanyApiProvider _apiProvider = CompanyApiProvider(); | |
| Future<CompaniesResponse> getCompanies() { | |
| return _apiProvider.getCompanies(); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment