MBUploadableFilesElement constructor

MBUploadableFilesElement(
  1. String localeIdentifier,
  2. String elementName, {
  3. required List<String> files,
})

Initializes a files element with a locale identifier, a name and the paths of the files

Implementation

MBUploadableFilesElement(
  super.localeIdentifier,
  super.elementName, {
  required this.files,
});