schemaMap property Null safety

RxMap<String, SchemaDocument> schemaMap
final

A Reference Map for all recently queried SchemaDefinitions, and all created SchemaDocuments.

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;