trackVerified static method

Future<Map?> trackVerified({
  1. bool? beacons,
})

Implementation

static Future<Map?> trackVerified({bool? beacons}) async {
  try {
    return await _channel
        .invokeMethod('trackVerified', {'beacons': beacons});
  } on PlatformException catch (e) {
    print(e);
    return {'error': e.code};
  }
}