describeValue method
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';
}