getNested method
Implementation
IsarObject? getNested(String propertyName, {String? linkCollection}) {
final data = this.data[propertyName] as Map<String, dynamic>?;
if (data != null) {
return IsarObject(data);
} else {
return null;
}
}