getID property

Future<String?> getID

this method is for getting user device id to help in generating SDK token

Implementation

static Future<String?> get getID async {
  final String? version = await _channel.invokeMethod('getID');
  return version;
}