selector property

Uint8List selector

Implementation

Uint8List get selector {
  final methodBytes = utf8.encode(signature);
  final digest = sha512256.convert(methodBytes).bytes;
  return Uint8List.fromList(digest.getRange(0, 4).toList());
}