canGetSubscriberId static method

Future<void> canGetSubscriberId(
  1. bool flag
)

Implementation

static Future<void> canGetSubscriberId(bool flag) async {
  if (defaultTargetPlatform == TargetPlatform.android) {
    await _channel.invokeMethod('canGetSubscriberId', {
      'canGetSubscriberId': flag,
    });
  }
}