setUnitExtraProps method
Set extra properties for this specific unit. These properties will be merged with page properties.
Implementation
Future<void> setUnitExtraProps(
HashMap<String, String> extraProperties) async {
if (extraProperties.isEmpty) return;
TBLProperties.mergeValidExtraProperties(
_unrecognizedUnitExtraProps,
extraProperties,
);
TBLLogger.log('Unit extra properties set: $_unrecognizedUnitExtraProps');
}