TextFieldForm constructor
const
TextFieldForm({
- Key? key,
- required Widget child,
- EdgeInsets padding = const EdgeInsets.fromLTRB(10, 2, 10, 2),
- double borderRadius = 5.0,
Implementation
const TextFieldForm({
Key? key,
required this.child,
this.padding = const EdgeInsets.fromLTRB(10, 2, 10, 2),
this.borderRadius = 5.0,
}) : super(key: key);