asyncUuid property

Future<String?> asyncUuid

Discovers the emulator id if the emulator is running and assigns it to uuid.

Implementation

Future<String?> get asyncUuid async {
  if (uuid != null) return uuid!;
  final uuidAndEmulatorId = await AdbCli.instance.internalIdentifierAndEmulatorId;
  if (uuidAndEmulatorId == null) return null;
  return uuid = uuidAndEmulatorId[_internalIdentifier]!;
}