getUDID method

Future<String> getUDID()

Gets the device UDID (Unique Device Identifier).

Returns: A Future that completes with the device UDID as a String.

Implementation

Future<String> getUDID() async {
  return await FlutterUdid.consistentUdid;
}