Suite constructor
Factory constructor to create a Suite
Implementation
factory Suite({
/// Optional path to this suite's file
String? path,
/// Platform on which this suite is running
required String platform,
/// All Tests contained within this suite
required List<Test> allTests,
}) = _Suite;