schemaMap property Null safety
final
A Reference Map for all recently queried SchemaDefinition
s, and all created SchemaDocument
s.
MotorFlutter.to.schemaDefinitions.forEach((def, doc) {
if(def.did == doc.did) {
print("Document ${doc.cid} built from definition: ${def.label}");
}
});
See also:
Implementation
final schemaMap = <String, SchemaDocument>{}.obs;