resolvedAppId property

String get resolvedAppId

Returns the platform-dependent unique identifier of the app under test.

Implementation

String get resolvedAppId {
  return platform.action.mobile(
    android: () => platform.android.resolvedAppId,
    ios: () => platform.ios.resolvedAppId,
  );
}