FastPickerService class

use this service to pick files from device

example:

final files = await FastPickerService.picker(
  type: FastPickerType.image,
  accept: ['jpg', 'png'],
  multiple: true,
);

Constructors

FastPickerService()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

picker({FastPickerType type = FastPickerType.image, List<String>? accept, bool multiple = false, bool allotComplession = true, int compressionQuality = 30, String? dialogTitle, String? initialDirectory, bool lockParentWindow = false, dynamic onFileLoading(FilePickerStatus)?, bool readSequential = false, bool withData = false, bool withReadStream = false}) Future<List<FileData>?>