displayCustomerGluBackgroundNotification static method

Future<void> displayCustomerGluBackgroundNotification(
  1. Map<String, dynamic> message, {
  2. bool autoclosewebview = false,
})

Implementation

static Future<void> displayCustomerGluBackgroundNotification(
    Map<String, dynamic> message,
    {bool autoclosewebview = false}) async {
  return await _channel.invokeMethod(
      'displayCustomerGluBackgroundNotification', <String, dynamic>{
    "message": message,
    "autoclosewebview": autoclosewebview
  });
}