LyInputBuilder<T> constructor

const LyInputBuilder<T>({
  1. required Widget builder(
    1. BuildContext,
    2. LyInputState<T>
    ),
  2. required LyInput<T> lyInput,
  3. Key? key,
})

Implementation

const LyInputBuilder({
  required this.builder,
  required this.lyInput,
  super.key,
});