toTargetPlatformAccelerator method
Implementation
TargetPlatformAccelerator toTargetPlatformAccelerator() {
switch (this) {
case 'INTEL_GRAPHICS':
return TargetPlatformAccelerator.intelGraphics;
case 'MALI':
return TargetPlatformAccelerator.mali;
case 'NVIDIA':
return TargetPlatformAccelerator.nvidia;
}
throw Exception('$this is not known in enum TargetPlatformAccelerator');
}