ImageSource.path constructor

ImageSource.path(
  1. String path
)

Used to describe the file image.

Implementation

factory ImageSource.path(String path) {
  return FileImageSource.path(path);
}