PerfRowStrings constructor

const PerfRowStrings({
  1. required String framework,
  2. required String test,
  3. required String time,
})

Implementation

const PerfRowStrings({
  required this.framework,
  required this.test,
  required this.time,
});