ImageSource.file constructor

ImageSource.file(
  1. File file
)

Used to describe the file image.

Implementation

factory ImageSource.file(File file) {
  return FileImageSource(file);
}