11 lines
123 B
Dart
11 lines
123 B
Dart
// bytes must not be nullable
|
|
|
|
import 'package:isar/isar.dart';
|
|
|
|
@collection
|
|
class Model {
|
|
Id? id;
|
|
|
|
late byte? prop;
|
|
}
|