cvList<T extends CvModel> method
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);
}