pathUI method

List<String> pathUI(
  1. String uiName,
  2. AFUIControlSettings control
)

Returns a path for the specified uiName and type.

Implementation

List<String> pathUI(String uiName, AFUIControlSettings control) {
  final filename = "${convertMixedToSnake(uiName)}.dart";
  return _createPath(control.path, filename);
}