usesDataSchema property

bool get usesDataSchema

Whether this widget class uses any data schema. This is the aggregate of data structs, enums, Firestore collections, and Supabase tables.

Implementation

bool get usesDataSchema =>
    usesDataStructs ||
    usesEnums ||
    usesFirestoreCollections ||
    usesSupabaseTables;