LoScope<TKey> constructor

const LoScope<TKey>({
  1. Key? key,
  2. required LoFormState<TKey> state,
  3. required Widget child,
})

Implementation

const LoScope({
  Key? key,
  required LoFormState<TKey> state,
  required Widget child,
}) : super(
        key: key,
        notifier: state,
        child: child,
      );