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(
  String localeIdentifier,
  String elementName, {
  required this.value,
}) : super(localeIdentifier, elementName);