Blob class
Sembast blob definition
- Implemented types
-
- Comparable<
Blob>
- Comparable<
Constructors
-
Blob(Uint8List bytes
) - Blob creation.
-
Blob.fromList(List<
int> list) - Blob creation from int list.
Properties
- bytes → Uint8List
-
Blob bytes. null not supported.
final
- hashCode → int
-
The hash code for this object. [...]
read-only, override
- length → int
-
Blob length.
read-only
- runtimeType → Type
-
A representation of the runtime type of the object.
read-only, inherited
Methods
-
compareTo(
Blob other ) → int -
Compares this object to another
Comparable
[...]override -
toBase64(
) → String - Base64 encoding.
-
toString(
) → String -
Returns a string representation of this object.
override
-
noSuchMethod(
Invocation invocation ) → dynamic -
Invoked when a non-existent method or property is accessed. [...]
inherited
Operators
-
operator ==(
dynamic other ) → bool -
The equality operator. [...]
override
-
operator [](
int index ) → int - The byte at a given index.
Static Methods
-
fromBase64(
String base64 ) → Blob - Blob creation from base64.