BaseInteractiveElement constructor

BaseInteractiveElement({
  1. required String elementId,
  2. required String elementType,
  3. ActionEntity? action,
  4. bool disableAfterInteracted = false,
})

Implementation

BaseInteractiveElement(
    {required super.elementId,
    required super.elementType,
    this.action,
    this.disableAfterInteracted = false});