MBUploadableDropdownElement constructor

MBUploadableDropdownElement(
  1. String localeIdentifier,
  2. String elementName, {
  3. required String value,
})

Initializes a dropdown element with a locale, a name and the selected value.

Implementation

MBUploadableDropdownElement(
  super.localeIdentifier,
  super.elementName, {
  required this.value,
});