MBUploadableTextElement constructor

MBUploadableTextElement(
  1. String localeIdentifier,
  2. String elementName, {
  3. required String text,
})

Initializes a text element with a locale identifier, a name and the ids of the text.

Implementation

MBUploadableTextElement(
  super.localeIdentifier,
  super.elementName, {
  required this.text,
});