MBUploadableRelationElement constructor

MBUploadableRelationElement(
  1. String localeIdentifier,
  2. String elementName, {
  3. required List<int> sectionIds,
})

Initializes a relation element with a locale identifier, a name and the ids of the sections selected.

Implementation

MBUploadableRelationElement(
  String localeIdentifier,
  String elementName, {
  required this.sectionIds,
}) : super(localeIdentifier, elementName);