removeCustomReplacements static method

Future<void> removeCustomReplacements()

Removes previously custom replacements map to the notifications.

Implementation

static Future<void> removeCustomReplacements() async {
  try {
    await _channel.invokeMethod(
      'remove_custom_replacements',
    );
  } catch (e) {
    rethrow;
  }
}