addCustomReplacements static method

Future<void> addCustomReplacements({
  1. required Map<String, String>? customReplacements,
})

Configures the MBPush plugin with custom replacements map made of Key -> String to replace Value -> String to add

@param customReplacements Map. Be aware that saved custom replacements maintain between apps openings

Implementation

static Future<void> addCustomReplacements({
  required Map<String, String>? customReplacements,
}) =>
    MBPush.addCustomReplacements(customReplacements);