isSupportPush method

Future<bool> isSupportPush ()

判断是否手机平台是否支持PUSH

@return true 表示手机平台支持PUSH, false表示不支持

Implementation

static Future<bool> isSupportPush() async {
  return await _channel.invokeMethod("isSupportPush");
}