scriptPubKey property

String scriptPubKey

Implementation

String get scriptPubKey {
  return program
      .map((c) => c.toRadixString(16).padLeft(2, '0'))
      .toList()
      .join('');
}