cpuName property Null safety
Future method to get CPU name of the device
Implementation
static Future<String> get cpuName async {
final cpuName = await _channel.invokeMethod("getCPUType");
return cpuName == null ? "" : cpuName;
}
Future method to get CPU name of the device
static Future<String> get cpuName async {
final cpuName = await _channel.invokeMethod("getCPUType");
return cpuName == null ? "" : cpuName;
}