hasFSSupport method

bool hasFSSupport(
  1. ClassElement classElement
)

Checks if a class has Firestore support.

Implementation

bool hasFSSupport(ClassElement classElement) {
  return fsValidClasses.contains(classElement);
}