FileUploadExample class

Constructors

FileUploadExample()

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

createEnvironment() BaseEnvironment
uploadFileFromBytes(List<int> fileBytes, String fileName) Future<void>
Example 3: Upload a file with bytes directly
uploadMultipleFiles(List<File> files, File document) Future<void>
Example 2: Upload multiple files using the more flexible approach
uploadSingleFile(File file) Future<void>
Example 1: Upload a single file using the uploadFile method