convertAllowTypeFromDartToWeb static method

dynamic convertAllowTypeFromDartToWeb(
  1. int allowType
)

Implementation

static dynamic convertAllowTypeFromDartToWeb(int allowType) {
  return allowTypeMapping.keys.firstWhere(
      (element) => allowTypeMapping[element] == allowType,
      orElse: () => '');
}