DeleteRequest<T> constructor

DeleteRequest<T>({
  1. required String url,
  2. required T fromJson(
    1. Map<String, dynamic>
    ),
  3. bool shouldPrintErrors = false,
  4. bool shouldPrintStackTrace = false,
})

Implementation

DeleteRequest({
  required super.url,
  required super.fromJson,
  super.shouldPrintErrors,
  super.shouldPrintStackTrace,
});