StorageAPI constructor

const StorageAPI({
  1. required String apiUrl,
  2. Map<String, String> getHeaders(
    1. String url
    )?,
  3. bool log = false,
})

Implementation

const StorageAPI({
  required this.apiUrl,
  this.getHeaders,
  this.log = false,
});