Convertor<In, Out> constructor
const
Convertor<In, Out> ({
- Key? key,
- required Out convertor(
- In input
- required Widget builder(
- BuildContext context,
- Out model
- required In input,
Implementation
const Convertor(
{Key? key,
required this.convertor,
required this.builder,
required this.input})
: super(key: key);