handleAny method

Widget handleAny(
  1. BuildContext context,
  2. dynamic input
)

Implementation

Widget handleAny(BuildContext context, input) {
  if (input is! P && paramConverter != null) {
    input = paramConverter!(input);
  }
  return _handler!(context, input as P);
}