CodeInfo constructor

CodeInfo({
  1. required bool isConst,
  2. String? code,
  3. String? message,
})

Implementation

CodeInfo({
  required this.isConst,
  this.code,
  this.message,
});