Convertor<In, Out> constructor

const Convertor<In, Out>({
  1. Key? key,
  2. required Out convertor(
    1. In input
    ),
  3. required Widget builder(
    1. BuildContext context,
    2. Out model
    ),
  4. required In input,
})

Implementation

const Convertor(
    {Key? key,
    required this.convertor,
    required this.builder,
    required this.input})
    : super(key: key);