forConverter method
Creates a new instance of T for the given converter and engine.
See OperationModeCacheEntry.forConverter for details.
Implementation
@override
FlutterWidgetBinder? forConverter(DogConverter<dynamic> converter, DogEngine engine) {
if (converter is EnumConverter) {
return EnumFlutterBinder(converter);
}
return null;
}