cvList<T extends CvModel> method

List<T> cvList<T extends CvModel>({
  1. T builder(
    1. Map contextData
    )?,
  2. bool lazy = true,
})

Create a list from a json string.

If lazy is true, the object in the list are converted when needed.

Implementation

List<T> cvList<T extends CvModel>(
    {T Function(Map contextData)? builder, bool lazy = true}) {
  return jsonToMapList().cv<T>(builder: builder, lazy: lazy);
}