OutputPointer.fromString constructor

OutputPointer.fromString(
  1. String str
)

Implementation

factory OutputPointer.fromString(String str) => OutputPointer(
      transactionId: Hash.fromString(str.split(':')[0]),
      outputIndex: int.parse(str.split(':')[1]),
    );