AhaiCardImageWithCopyWidgetModelFromMap static method

List<AhaiCardImageWithCopyWidgetModel> AhaiCardImageWithCopyWidgetModelFromMap(
  1. String str
)

Implementation

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