Formi constructor

Formi({
  1. required Widget child,
  2. Map<String, dynamic>? initialValue,
  3. Key? key,
})

Implementation

Formi({
  required this.child,
  this.initialValue,
  Key? key,
}) : super(key: key);