sendBeacon method

Future<String?> sendBeacon(
  1. Beacon beaconData
)

Implementation

Future<String?> sendBeacon(Beacon beaconData) async {
  return CommonChannel.invokeMethod<String>(
    method: ChannelMethod.sendBeacon,
    arguments: beaconData.serialize()
  );
}