get method

  1. @override
  2. @protected
Future<Response> get(
  1. String path, [
  2. Map<String, dynamic>? query
])
override

Sends a protected GET request to the specified path with optional query.

Implementation

@override
@protected
Future<Response> get(String path, [Map<String, dynamic>? query]) async {
  return Response();
}