WatermarkSource.file constructor

WatermarkSource.file(
  1. String path
)

To add image from local storage with file's path

Implementation

WatermarkSource.file(String path) {
  _path = path;
  _source = WatermarkSourceEnum.file;
}