otherPushType property

Future<String?> otherPushType

获取安卓厂商品牌,当前仅对安卓有效

Implementation

static Future<String?> get otherPushType async {
  if (Platform.isIOS) {
    return null;
  } else {
    final String otherPushType =
        await _channel.invokeMethod('getOtherPushType');
    return otherPushType;
  }
}