all abstract method

Future<Iterable<String>> all({
  1. bool recursive = false,
})

This method is used to find all the pubspecs in the project

When recursive is true, this finds pubspecs in subdirectories as well as the current directory.

When recursive is false, this only finds the pubspec in the current directory.

Implementation

Future<Iterable<String>> all({bool recursive = false});