allowsPushStart method
Implementation
@override
Future<bool> allowsPushStart() async {
if (defaultTargetPlatform != TargetPlatform.iOS) {
return false;
}
final result = await methodChannel.invokeMethod<bool>('allowsPushStart');
return result ?? false;
}