Format constructor
Format(
- String? format, {
- bool? lossy,
- Progressive? progressive,
- bool? preserveTransparency,
- bool? ignoreMaskChannels,
Implementation
Format(this.format,
{bool? lossy,
Progressive? progressive,
bool? preserveTransparency,
bool? ignoreMaskChannels}) {
_lossy = lossy;
_progressive = progressive;
_preserveTransparency = preserveTransparency;
_ignoreMaskChannels = ignoreMaskChannels;
}