pjUrl method

  1. @override
Future<Url> pjUrl()

The contents of the &pj= query parameter including the base64url-encoded public key receiver subdirectory. This identifies a session at the payjoin directory server.

Implementation

@override
Future<Url> pjUrl() async {
  final res = await super.pjUrl();
  return Url.fromStr(res.asString());
}