toJsonFromList static method

List toJsonFromList(
  1. List<FeatureImage> featureImages
)

Implementation

static List<dynamic> toJsonFromList(List<FeatureImage> featureImages) {
  return featureImages.map((p) => p.toJson()).toList();
}