CaptureDataFormat enum

The internal representation of the captured data. It's recommended to use the target format for your case, to avoid data duplication and data conversion.

Inheritance

Constructors

CaptureDataFormat()
const

Values

string → const CaptureDataFormat

The data is stored as a content String.

arrayBuffer → const CaptureDataFormat

The data is stored as an Uint8List array buffer.

base64 → const CaptureDataFormat

The data is stored as a Base64 String.

dataUrlBase64 → const CaptureDataFormat

The data is stored as a DataURLBase64.

url → const CaptureDataFormat

The data is stored as a URL String (including DataURL).

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
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

Constants

values → const List<CaptureDataFormat>
A constant List of the values in this enum, in order of their declaration.