getGpuCount method

Future<int> getGpuCount()

Get number of Vulkan GPU devices available.

Implementation

Future<int> getGpuCount() async {
  final result = await _methodChannel.invokeMethod<int>('getGpuCount');
  return result ?? 0;
}