collectionName property

  1. @override
String get collectionName

Implementation

@override
String get collectionName =>
    RealmObjectBase.get<String>(this, '_id') as String;
  1. @override
set collectionName (String value)

Implementation

@override
set collectionName(String value) => RealmObjectBase.set(this, '_id', value);