serverRequest<T> abstract method

Future<String> serverRequest<T>(
  1. Uri url, {
  2. required String body,
  3. String? authenticationValue,
})

Performs the actual request to the server and returns the response data.

Implementation

Future<String> serverRequest<T>(
  Uri url, {
  required String body,
  String? authenticationValue,
});