Image constructor
Implementation
factory Image({
_i2.String? hash,
_i2.Future<_i6.Uint8List> Function()? getBytesAsync,
_i2.Future<_i2.dynamic> Function()? getSizeAsync,
}) =>
Image._(
hash: hash,
getBytesAsync:
getBytesAsync == null ? null : _i5.allowInterop(getBytesAsync),
getSizeAsync:
getSizeAsync == null ? null : _i5.allowInterop(getSizeAsync),
);