HandoverCarrierRecord constructor

HandoverCarrierRecord({
  1. TypeNameFormat? carrierTnf,
  2. String? carrierType,
  3. Uint8List? carrierData,
  4. Uint8List? id,
})

Implementation

HandoverCarrierRecord(
    {TypeNameFormat? carrierTnf,
    String? carrierType,
    Uint8List? carrierData,
    Uint8List? id}) {
  if (carrierTnf != null) {
    this.carrierTnf = carrierTnf;
  }
  this.carrierType = carrierType;
  if (carrierData != null) {
    this.carrierData = carrierData;
  }
  this.id = id;
}