describeValue method

  1. @override
String describeValue(
  1. DeviceVariantConfig value
)
override

Formats the console log output for the active test permutation block.

Returns a structured string pattern: [PLATFORM] : [Device Info] : Suite Description

Implementation

@override
String describeValue(DeviceVariantConfig value) {
  final platformName = value.platform.name.toUpperCase();
  return '[$platformName] : [${value.info}] : $_description';
}