QuickInput constructor
QuickInput({})
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),
);