FakeLocations constructor
FakeLocations({
- Future<
ListLocationsResponse> listLocations(- ListLocationsRequest request
- Future<
Location> getLocation(- GetLocationRequest request
Implementation
FakeLocations({
Future<ListLocationsResponse> Function(ListLocationsRequest request)?
listLocations,
Future<Location> Function(GetLocationRequest request)? getLocation,
}) : _listLocations = listLocations,
_getLocation = getLocation;