all property

Get all carrier data from device

Implementation

static Future<CarrierData?> get all async => CarrierData(
    allowsVOIP: await allowsVOIP,
    carrierName: await carrierName,
    isoCountryCode: await isoCountryCode,
    mobileCountryCode: await mobileCountryCode,
    mobileNetworkCode: await mobileNetworkCode,
    mobileNetworkOperator: await mobileNetworkOperator,
    networkGeneration: await networkGeneration,
    radioType: await radioType,
    cid: await cid,
    lac: await lac);