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