image property

Image get image

Implementation

Image               get image       =>  _file == null
? throw Exception()
: Image.file(
  kIsWeb
  ? File.fromRawPath(_file!.bytes!)
  : File(_file!.path!)
);