Control.number constructor
Implementation
factory Control.number({
required String key,
String? description,
String? title,
void Function(dynamic)? onChange,
int? value,
int? max,
int? min,
Widget? prefixIcon,
}) =>
Control(
title: title ?? '',
description: description ?? '',
onChange: onChange,
key: key,
type: ControlType.number,
value: <String, int>{
'selected': value ?? min ?? 0,
'min': min ?? 0,
'max': max ?? 10,
},
prefixIcon: prefixIcon,
);