disk method

Storage disk(
  1. String disk
)

set the disk name

Storage().disk('local').get('image.jpg');

Implementation

Storage disk(String disk) {
  _disk = disk;
  return this;
}