startBeacon method

Future<void> startBeacon (
  1. String shopName,
  2. String token,
  3. {bool debugInfo: false}
)

Entry point, should be called in main() method.

Implementation

static Future<void> startBeacon(String shopName, String token,
        {bool debugInfo = false}) async =>
    await _channel.invokeMethod("startBeacon",
        {'shopName': shopName, 'token': token, 'debugInfo': debugInfo});