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