Supported Types
On this page
Realm is now Atlas Device SDK – Learn More
Placeholder page for supported data types.
Generic (Mixed) Data Type
Counter Data Type
Timestamp Data Type
Supported List Property Types
Define a Uint8List Property Type (Dart)
Uint8List is a binary data type from dart:typed_data. You can use this data type in object models and property values.
To define a property as Uint8List
, you must first import dart:typed_data
.
Then, set the object's type as Uint8List
in your object model.
()class _BinaryExample { late String name; late Uint8List requiredBinaryProperty; late Uint8List? nullableBinaryProperty; }