toJsonList static method

dynamic toJsonList(
  1. List<DeepLinksModel> data
)

Implementation

static toJsonList(List<DeepLinksModel> data){
  return data.map((e) => e.convertToJson()).toList();
}