allKnownPlatforms property
Returns all the known platforms for the test
package.
Implementation
List<String> get allKnownPlatforms => <String>{
...Runtime.builtIn.map((e) => e.identifier),
...parsedArgs.overrideRuntimes.values.map((e) => e.identifier),
...parsedArgs.defineRuntimes.values.map((e) => e.identifier),
}.toList();