FileUploadAction constructor
FileUploadAction({
- Map? inputs,
- String? id,
- EnsembleAction? onComplete,
- EnsembleAction? onError,
- required String uploadApi,
- required String fieldName,
- int? maxFileSize,
- String? overMaxFileSizeMessage,
- required bool isBackgroundTask,
- required dynamic files,
- String? networkType,
- bool? requiresBatteryNotLow,
- required bool showNotification,
- int? batchSize,
Implementation
FileUploadAction({
super.inputs,
this.id,
this.onComplete,
this.onError,
required this.uploadApi,
required this.fieldName,
this.maxFileSize,
this.overMaxFileSizeMessage,
required this.isBackgroundTask,
required this.files,
this.networkType,
this.requiresBatteryNotLow,
required this.showNotification,
this.batchSize,
});