AlternativeCarrierRecord constructor
AlternativeCarrierRecord({
- CarrierPowerState? carrierPowerState,
- Uint8List? carrierDataReference,
- List<
Uint8List> ? auxDataReferenceList,
Implementation
AlternativeCarrierRecord(
{CarrierPowerState? carrierPowerState,
Uint8List? carrierDataReference,
List<Uint8List>? auxDataReferenceList}) {
if (carrierPowerState != null) {
this.carrierPowerState = carrierPowerState;
}
if (carrierDataReference != null) {
this.carrierDataReference = carrierDataReference;
}
this.auxDataReferenceList = auxDataReferenceList ?? <Uint8List>[];
}