remove method

Future<void> remove(
  1. int id
)

Implementation

Future<void> remove(int id) async {
  Map<String, Object> data = Map();

  data["id"] = id;

  await _pushModule.invokeMethod(REMOVE_METHOD, data);
}