appKey property

Future<String> appKey

Implementation

static Future<String> get appKey async {
  try {
    return await _channel.invokeMethod('getAppKey');
  } on PlatformException catch (pe) {
    throw TealeafException(pe,
        msg: 'Unable to process app key request message!');
  }
}