* Creates a new widget which is composed of a Button which triggers a Dialog. * Accepts partial options to override any options passed to constructor.
(optionOverrides: OverrideFeedbackConfiguration = {})
| 364 | * Accepts partial options to override any options passed to constructor. |
| 365 | */ |
| 366 | createWidget(optionOverrides: OverrideFeedbackConfiguration = {}): ActorComponent { |
| 367 | const actor = _createActor(mergeOptions(_options, optionOverrides)); |
| 368 | actor.appendToDom(); |
| 369 | return actor; |
| 370 | }, |
| 371 | |
| 372 | /** |
| 373 | * Creates a new Form which you can |
nothing calls this directly
no test coverage detected