AhaiCardImageWidgetModelFromMap static method

List<AhaiCardImageWidgetModel> AhaiCardImageWidgetModelFromMap(
  1. String str
)

Implementation

static List<AhaiCardImageWidgetModel> AhaiCardImageWidgetModelFromMap(
        String str) =>
    List<AhaiCardImageWidgetModel>.from(
      json.decode(str).map(
            (x) => AhaiCardImageWidgetModel.fromMap(x),
          ),
    );