SparkForm constructor

const SparkForm({
  1. Key? key,
  2. required Widget child,
  3. required FormGroupManage manage,
  4. SparkFormController? controller,
})

form base widget, manage data and verify the data if SparkForm not wrap in SparkThemeData will be create SparkThemeData root

Implementation

const SparkForm({
  Key? key,
  required this.child,
  required this.manage,
  this.controller,
}) : super(key: key);