fromValue static method
Implementation
static FlutterxelCoreBackendKind fromValue(int value) => switch (value) {
1 => FLUTTERXEL_CORE_BACKEND_NATIVE_CORE,
2 => FLUTTERXEL_CORE_BACKEND_C_FALLBACK,
3 => FLUTTERXEL_CORE_BACKEND_DART_FALLBACK,
_ => throw ArgumentError(
"Unknown value for FlutterxelCoreBackendKind: $value",
),
};