init method

dynamic init({
  1. bool? enableFilePickerExceptionHandler,
})

Implementation

init({
  // StorageCustomize? customize,
  bool? enableFilePickerExceptionHandler,
}) {
  // if (customize != null) {
  //   this.customize = customize;
  // }
  if (enableFilePickerExceptionHandler != null) {
    this.enableFilePickerExceptionHandler = enableFilePickerExceptionHandler;
  }
}