monorepo/dialer/packages/mobile_number/lib/sim_card.dart
Bartosz 13376118c3
All checks were successful
/ mirror (push) Successful in 4s
add of sim changes
2024-11-28 20:57:58 +00:00

44 lines
1.2 KiB
Dart

import 'dart:convert';
class SimCard {
final String? carrierName;
final String? displayName;
final int? slotIndex;
final String? number;
final String? countryIso;
final String? countryPhonePrefix;
SimCard({
this.carrierName,
this.displayName,
this.slotIndex,
this.number,
this.countryIso,
this.countryPhonePrefix,
});
factory SimCard.fromMap(Map<String, dynamic> json) => SimCard(
carrierName: json["carrierName"],
displayName: json["displayName"],
slotIndex: json["slotIndex"],
number: json["number"],
countryIso: json["countryIso"],
countryPhonePrefix: json["countryPhonePrefix"],
);
Map<String, dynamic> toMap() => {
"carrierName": carrierName,
"displayName": displayName,
"slotIndex": slotIndex,
"number": number,
"countryIso": countryIso,
"countryPhonePrefix": countryPhonePrefix,
};
static List<SimCard> parseSimCards(String str) =>
List<SimCard>.from(json.decode(str).map((x) => SimCard.fromMap(x)));
static String simCardToJson(List<SimCard> data) =>
json.encode(List<dynamic>.from(data.map((x) => x.toMap())));
}