getSupportedSizes method
Get supported image sizes for this provider
Implementation
@override
List<String> getSupportedSizes() {
// Google Imagen 3 supports these aspect ratios
return [
'1:1', // Square
'3:4', // Portrait fullscreen
'4:3', // Fullscreen
'9:16', // Portrait
'16:9', // Widescreen
];
}