FileImage constructor Null safety

const FileImage(
  1. File file,
  2. {double scale = 1.0}
)

Creates an object that decodes a File as an image.

The arguments must not be null.

Implementation

const FileImage(this.file, { this.scale = 1.0 })
  : assert(file != null),
    assert(scale != null);