copyWith method
Implementation
SimCards copyWith({
String? subscriptionId,
String? displayName,
String? carrierName,
String? number,
String? slotIndex,
String? countryIso,
String? carrierId,
String? isEmbedded,
String? iccId,
}) {
return SimCards(
subscriptionId: subscriptionId ?? this.subscriptionId,
displayName: displayName ?? this.displayName,
carrierName: carrierName ?? this.carrierName,
number: number ?? this.number,
slotIndex: slotIndex ?? this.slotIndex,
countryIso: countryIso ?? this.countryIso,
carrierId: carrierId ?? this.carrierId,
isEmbedded: isEmbedded ?? this.isEmbedded,
iccId: iccId ?? this.iccId,
);
}