Http extension

on

Methods

httpDelete<T>({dynamic body, required Function converter, bool isAuth = true, Map<String, dynamic>? queryParams, bool isContentTypeHeader = false}) Future<ApiResponse<T>>

Available on String, provided by the Http extension

httpGet<T>({required Function converter, bool isAuth = true, Map<String, dynamic>? queryParams, bool isContentTypeHeader = false}) Future<ApiResponse<T>>

Available on String, provided by the Http extension

httpMultiPart<T>({required Function converter, List<MultipartFile>? files, Map<String, String>? fields, bool isAuth = true, String method = "POST"}) Future<ApiResponse<T>>

Available on String, provided by the Http extension

httpMultiPartWithProgress<T>({required Function converter, List<FileItem>? files, Map<String, String>? fields, bool isAuth = true, String method = "POST"}) Future<ApiResponse<T>>

Available on String, provided by the Http extension

httpPost<T>({dynamic body, required Function converter, bool isAuth = true, Map<String, dynamic>? queryParams, bool isContentTypeHeader = false}) Future<ApiResponse<T>>

Available on String, provided by the Http extension

httpPut<T>({dynamic body, required Function converter, bool isAuth = true, Map<String, dynamic>? queryParams, bool isContentTypeHeader = false}) Future<ApiResponse<T>>

Available on String, provided by the Http extension