decode static method
- Unpacker u
Implementation
static RepositoryHandle? decode(Unpacker u) {
  final value = u.unpackInt();
  return value != null ? RepositoryHandle(value) : null;
}static RepositoryHandle? decode(Unpacker u) {
  final value = u.unpackInt();
  return value != null ? RepositoryHandle(value) : null;
}