Suite constructor
Factory constructor to create a Suite
Implementation
factory Suite({
/// An opaque ID for this suite.
required int id,
/// The platform on which this suite is running.
required String platform,
/// The path to this suite's file, or `null` if that path is unknown.
String? path,
}) = _Suite;