addCustomReplacements static method

Future<void> addCustomReplacements(
  1. Map<String, String>? customData
)

Sets custom info for push notifications

Implementation

static Future<void> addCustomReplacements(
    Map<String, String>? customData) async {
  await MPush.addCustomReplacements(customData: customData);
}