Int64 constructor

Int64([
  1. BigInt? _v
])

Implementation

Int64([this._v]) {
    if (_v != null) {
        if (_v! < BigInt.from(-2).pow(63) || _v! > BigInt.from(2).pow(63)-BigInt.from(1)) {
            throw Exception('CandidType: Int64 value can be between ${BigInt.from(-2).pow(63)}<=value && value <= ${BigInt.from(2).pow(63)-BigInt.from(1)} ');
        }
    }
}