vcr 2.0.0 vcr: ^2.0.0 copied to clipboard
A package to mock requests in tests, storing request in json files and reusing
import 'package:dio/dio.dart';
class ApiCall {
Dio client = Dio();
call() async {
Response response =
await client.get('https://api.github.com/users/louis-kevin/repos');
return response;
}
}