executables property

List<Executable> executables

Get the list of exectuables

Implementation

List<Executable> get executables {
  if (_executables == null) {
    _executables = <Executable>[];
    for (final key in pubspec.executables.keys) {
      _executables!
          .add(Executable(key, pubspec.executables[key]!.scriptPath));
    }
  }

  return List.unmodifiable(_executables!);
}