setSmartPushEnable method
Implementation
void setSmartPushEnable({bool enable = true}) {
if (Platform.isIOS) {
return;
}
print(flutter_log + "setSmartPushEnable:");
_channel.invokeMethod('setSmartPushEnable', {'enable': enable});
}
void setSmartPushEnable({bool enable = true}) {
if (Platform.isIOS) {
return;
}
print(flutter_log + "setSmartPushEnable:");
_channel.invokeMethod('setSmartPushEnable', {'enable': enable});
}