$fromProtoBytes static method

BigInt? $fromProtoBytes(
  1. List<int> bytes
)

Implementation

static BigInt? $fromProtoBytes(List<int> bytes) {
  if (bytes.isEmpty) {
    return null;
  }

  return $BigIntProtoExtension.$fromProtoBytes(bytes);
}