QuickInput constructor

QuickInput({
  1. String? title,
  2. num? step,
  3. num? totalSteps,
  4. bool? enabled,
  5. bool? busy,
  6. bool? ignoreFocusOut,
  7. Event<void>? onDidHide,
  8. void show()?,
  9. void hide()?,
  10. void dispose()?,
})

Implementation

factory QuickInput({
  _i2.String? title,
  _i2.num? step,
  _i2.num? totalSteps,
  _i2.bool? enabled,
  _i2.bool? busy,
  _i2.bool? ignoreFocusOut,
  _i3.Event<void>? onDidHide,
  void Function()? show,
  void Function()? hide,
  void Function()? dispose,
}) =>
    QuickInput._(
      title: title ?? _i6.undefined,
      step: step ?? _i6.undefined,
      totalSteps: totalSteps ?? _i6.undefined,
      enabled: enabled,
      busy: busy,
      ignoreFocusOut: ignoreFocusOut,
      onDidHide: onDidHide ?? _i6.undefined,
      show: show == null ? null : _i5.allowInterop(show),
      hide: hide == null ? null : _i5.allowInterop(hide),
      dispose: dispose == null ? null : _i5.allowInterop(dispose),
    );