isEngineSupported static method
Check if engine is supported on current platform
Implementation
static bool isEngineSupported(EngineType type) {
final engine = create(type);
return engine != null && engine.isSupported;
}
Check if engine is supported on current platform
static bool isEngineSupported(EngineType type) {
final engine = create(type);
return engine != null && engine.isSupported;
}