Suite constructor

Suite({
  1. required int id,
  2. required String platform,
  3. String? path,
})

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;