getTemplateDataNames method

Future<List<String?>> getTemplateDataNames()

getTemplateDataNames returns all object names on the current template.

This can be used to see placeholder names instead of opening Brady Workstation to see what they are named. These object names can be directly passed into the setPlaceholderValue to set the value of a placeholder.

Implementation

Future<List<String?>> getTemplateDataNames() {
  throw UnimplementedError(
      'getTemplateDataNames() has not been implemented.');
}