$numberWithOptions static method
Wrapper for the TextInputType.numberWithOptions constructor
Implementation
static $Value? $numberWithOptions(
Runtime runtime,
$Value? thisValue,
List<$Value?> args,
) {
return $TextInputType.wrap(
TextInputType.numberWithOptions(
signed: args[0]?.$value ?? false,
decimal: args[1]?.$value ?? false,
),
);
}