sizesDescription property
String
get
sizesDescription
Implementation
String get sizesDescription {
final sizes = portraitSizes.map(
(s) =>
landscapeOnly ? '${s.height}x${s.width}' : '${s.width}x${s.height}',
);
return sizes.join(' or ');
}