isInteractive static method

bool isInteractive(
  1. Type runtimeType
)

Implementation

static bool isInteractive(Type runtimeType) =>
    isButton(runtimeType) ||
    isField(runtimeType) ||
    _interactiveTypes.contains(runtimeType) ||
    _customInteractiveTypes.contains(runtimeType);