removeShareTargets method

  1. @override
Future<bool?> removeShareTargets(
  1. List<String> ids
)
override

This removes the share target with given identifier. If any of the share targets couldn't be removed the returned future resolves to false.

Implementation

@override
Future<bool?> removeShareTargets(List<String> ids) {
  return _methodChannel.invokeMethod("removeShareTargets", ids);
}