getInstructions method

  1. @override
String getInstructions(
  1. BuildContext context,
  2. Release release
)
override

Returns the instructions for manually installing a given release in markdown format.

Throws an UnsupportedError if canPatch returns true.

Implementation

@override
String getInstructions(BuildContext context, Release release) {
  return AppLocalizations.of(context)!.update_instructions_aur(
    kBuildChannel.name,
  );
}