TextFieldForm constructor

const TextFieldForm({
  1. Key? key,
  2. required Widget child,
  3. EdgeInsets padding = const EdgeInsets.fromLTRB(10, 2, 10, 2),
  4. 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);