getVponID method

Future<String?> getVponID()

Implementation

Future<String?> getVponID() async {
  String? id;
  try {
    final String result =
        await instanceManager.channel.invokeMethod('getVponID');
    id = result;
  } on PlatformException catch (e) {
    VponLogger.e("Failed to get id: '${e.message}'.");
  }
  return id;
}