getDeviceId method

Future<String> getDeviceId()

Implementation

Future<String> getDeviceId() async {
  String response = await methodChannel.invokeMethod("getDeviceId");
  return response;
}