alwaysDisableOutputSubstitution method

  1. @override
Future<RequestBuilder> alwaysDisableOutputSubstitution({
  1. required bool disable,
  2. dynamic hBigInt,
})

Implementation

@override
Future<RequestBuilder> alwaysDisableOutputSubstitution(
    {required bool disable, hBigInt}) async {
  try {
    final res = await super.alwaysDisableOutputSubstitution(disable: disable);
    return RequestBuilder._(field0: res.field0);
  } on error.PayjoinError catch (e) {
    throw mapPayjoinError(e);
  }
}