initialize static method

Future<void> initialize({
  1. bool showDialog = true,
})

To start registering PushPole, you will call this method. showDialog: If device had no GooglePlayServices or it was old, a dialog will appear to let user update it using any market.

Implementation

static Future<void> initialize({bool showDialog: true}) async =>
    _channel.invokeMethod('PushPole#initialize', {"showDialog": showDialog});