isIOS static method

Future<bool> isIOS()

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

Implementation

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