MastodonMediaConfiguration constructor

const MastodonMediaConfiguration({
  1. required List<String> supportedMimeTypes,
  2. int? descriptionLimit,
  3. int? imageSizeLimit,
  4. int? imageMatrixLimit,
  5. int? videoSizeLimit,
  6. int? videoFrameRateLimit,
  7. int? videoMatrixLimit,
})

Implementation

const MastodonMediaConfiguration({
  required this.supportedMimeTypes,
  this.descriptionLimit,
  this.imageSizeLimit,
  this.imageMatrixLimit,
  this.videoSizeLimit,
  this.videoFrameRateLimit,
  this.videoMatrixLimit,
});