MockRoute constructor
MockRoute({
- required String path,
- required String method,
- required MockResponse response,
Creates a route with an HTTP method, path, and response.
Implementation
MockRoute({
required this.path,
required this.method,
required this.response,
});