defineChannel static method
Determina el type para el canal que realizó la petición para generar el QR (generador del QR)
Implementation
static EmvChannelType defineChannel(String channel){
return EmvChannelType.values.firstWhere((channelType) => channelType.name.toUpperCase() == channel);
}