get<K> method

Future<Response<K>> get<K>(
  1. String action, {
  2. Map<String, dynamic>? params,
  3. bool protected = false,
  4. void onReceiveProgress(
    1. int,
    2. int
    )?,
  5. bool verbose = false,
})

Implementation

Future<Response<K>> get<K>(
  String action, {
  Map<String, dynamic>? params,
  bool protected = false,
  void Function(int, int)? onReceiveProgress,
  bool verbose = false,
}) {
  return apiClient.get<K>(
    '$url$action/',
    params: params,
    protected: protected,
    onReceiveProgress: onReceiveProgress,
    verbose: verbose,
  );
}