isLinux static method

Future<bool> isLinux()

检查当前设备是否为Linux设备。

Implementation

static Future<bool> isLinux() async {
  return Platform.isLinux;
}