NameForm constructor

NameForm({
  1. required NameDetails nameDetails,
  2. required IconData icon,
  3. required Function saveValue,
  4. required Widget buttons,
  5. required double width,
  6. required double height,
})

Implementation

NameForm({
  required this.nameDetails,
  required this.icon,
  required this.saveValue,
  required this.buttons,
  required this.width,
  required this.height,
});