EIR constructor

EIR({
  1. EIRType? type,
  2. Uint8List? data,
})

Implementation

EIR({EIRType? type, Uint8List? data}) {
  if (type != null) {
    this.type = type;
  }
  if (data != null) {
    this.data = data;
  }
}