label method
Set the label.
Implementation
@override
PjUriBuilder label({required String label}) {
try {
final res = super.label(label: label);
return PjUriBuilder(internal: res.internal);
} on error.PayjoinError catch (e) {
throw mapPayjoinError(e);
}
}