delete static method

Future<bool> delete(
  1. Sample sample
)

Deletes Sample from HealthKit.

Implementation

static Future<bool> delete(Sample sample) async {
  final arguments = sample.parsed();
  return await _methodChannel.invokeMethod('delete', arguments);
}