AllSimInfo.fromJson constructor

AllSimInfo.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory AllSimInfo.fromJson(Map<String, dynamic> json) => AllSimInfo(
  simIds: (json['simIds'] as List<dynamic>?)
      ?.map((e) => SimDetails.fromJson(e))
      .toList(),
  totalSimUsed: json['totalSimUsed'],
);