vcr 0.1.0 vcr: ^0.1.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/keviinlouis/repos');
return response;
}
}