getPackingChannel property

Future<String?> getPackingChannel

获取渠道号,iOS端默认为AppStore

Implementation

static Future<String?> get getPackingChannel async {
  final String? channel = await _channel.invokeMethod('getPackingChannel');
  return channel;
}