encodedMemo property

Uint8List? get encodedMemo

Implementation

Uint8List? get encodedMemo {
  if (memo == null) {
    return null;
  }
  final utf = utf8.encode(memo!);

  return utf;
}