pathStateView method

List<String>? pathStateView(
  1. String stateViewName
)

Returns the path of a state view class name.

Implementation

List<String>? pathStateView(String stateViewName) {
  final filename = _namedObjectToFilename(stateViewName, "StateView");
  if(filename == null) {
    return null;
  }
  return _createPath(stateViewsPath, filename);
}