SocialImageSpec constructor

const SocialImageSpec({
  1. required int width,
  2. required int height,
  3. required int minWidth,
  4. required int minHeight,
  5. required String maxFileSize,
  6. required String aspectRatio,
  7. required List<String> formats,
})

Implementation

const SocialImageSpec({
  required this.width,
  required this.height,
  required this.minWidth,
  required this.minHeight,
  required this.maxFileSize,
  required this.aspectRatio,
  required this.formats,
});