parseSimCards static method

List<SimCard> parseSimCards(
  1. String str
)

Implementation

static List<SimCard> parseSimCards(String str) =>
    List<SimCard>.from(json.decode(str).map((x) => SimCard.fromMap(x)));