getIcon method
Retrieves the icon of the specified package.
This method takes the packageName
as a parameter and returns a
Future that resolves to a Uint8List containing the icon data
of the package. If the method is not implemented, it throws an
UnimplementedError.
Implementation
Future<Uint8List> getIcon(String packageName) {
throw UnimplementedError();
}