addOutputAt method

int addOutputAt(
  1. Uint8List? scriptPubKey,
  2. int value,
  3. int at
)

Implementation

int addOutputAt(Uint8List? scriptPubKey, int value, int at) {
  final output = Output(script: scriptPubKey, value: value);
  return addBaseOutputAt(output, at);
}