PictureConfiguration constructor

const PictureConfiguration({
  1. AssetBundle? bundle,
  2. Locale? locale,
  3. TextDirection? textDirection,
  4. Rect? viewBox,
  5. TargetPlatform? platform,
  6. ColorFilter? colorFilter,
})

Creates an object holding the configuration information for an PictureProvider.

All the arguments are optional. Configuration information is merely advisory and best-effort.

Implementation

const PictureConfiguration({
  this.bundle,
  this.locale,
  this.textDirection,
  this.viewBox,
  this.platform,
  this.colorFilter,
});