get method

Future get(
  1. String path, {
  2. Map<String, dynamic>? params,
  3. bool isLoading = false,
  4. bool needResponse = true,
  5. bool isCustomResponse = false,
  6. FailFunction? fail,
})

Implementation

Future get(
  String path, {
  Map<String, dynamic>? params,
  bool isLoading = false,
  bool needResponse = true,
  bool isCustomResponse = false,
  FailFunction? fail,
}) async {
  return request(path,
      params: params,
      isLoading: isLoading,
      needResponse: needResponse,
      isCustomResponse: isCustomResponse,
      fail: fail);
}