TraceableForm constructor

const TraceableForm({
  1. Key? key,
  2. required String formName,
  3. String? path,
  4. PerformanceInfo? performanceInfo,
  5. required Widget child,
})

Implementation

const TraceableForm({
  super.key,
  required this.formName,
  this.path,
  this.performanceInfo,
  required this.child,
});