Int32 constructor

Int32([
  1. int? _v
])

Implementation

Int32([this._v]) {
    if (_v!=null) {
        if (_v! < pow(-2,31) || _v! > pow(2,31)-1 ) {
            throw Exception('CandidType: Int32 value must be between ${pow(-2,31)} <= value && value <= ${pow(2,31)-1}');
        }
    }
}