pushToken property

String pushToken

Returns the pushToken of the push notifications plugin of MBurger. This will return the token of the MPush SDK. If you need help setting up the push notifications go to the MPush documentation.

Implementation

static String get pushToken => MBPush.pushToken;
void pushToken=(String pushToken)

Set the pushToken of the push notifications plugin of MBurger. This will set the token of the MPush SDK. If you need help setting up the push notifications go to the MPush documentation.

Implementation

static set pushToken(String pushToken) {
  MBPush.pushToken = pushToken;
}