getDeviceId property

Future<String> getDeviceId

Implementation

static Future<String> get getDeviceId async {
  try{
    final String getDeviceId = await _channel.invokeMethod('getDeviceId');
    return getDeviceId;
  }  catch (e) {
    throw(e.toString());
  }
}