isRemoteConfig static method

bool isRemoteConfig(
  1. ClassElement classElement
)

Implementation

static bool isRemoteConfig(ClassElement classElement) {
  return !classElement.displayName.startsWith('_\$') &&
      classElement.allSupertypes.any(
        (interfaceType) {
          return interfaceType.element.name == '$BuiltConfig';
        },
      );
}