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