getByValue static method
Implementation
static LicensingResultCode? getByValue(int? i) {
  if (i == null) return null;
  return LicensingResultCode.values.firstWhere((x) => x.value == i);
}static LicensingResultCode? getByValue(int? i) {
  if (i == null) return null;
  return LicensingResultCode.values.firstWhere((x) => x.value == i);
}