AppInfo class

Represents information about an application that can handle a launch action.

Constructors

AppInfo({required String name, String? packageName, String? scheme, String? icon})
Creates an AppInfo instance.
const

Properties

hashCode → int
The hash code for this object.
no setteroverride
icon → String?
An optional icon for the application. This could be a path to an asset, a network URL, or a base64 encoded string.
final
name → String
The display name of the application (e.g., "Google Chrome", "WhatsApp").
final
packageName → String?
The package name (Android) or bundle ID (iOS) of the application.
final
runtimeType → Type
A representation of the runtime type of the object.
no setterinherited
scheme → String?
The URL scheme associated with the application (iOS).
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() → String
A string representation of this object.
inherited

Operators

operator ==(Object other) → bool
The equality operator.
override