label method

  1. @override
PjUriBuilder label({
  1. required String label,
})

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);
  }
}