ExecutionList.fromMap constructor
Implementation
factory ExecutionList.fromMap(Map<String, dynamic> map) {
return ExecutionList(
total: map['total'],
executions: List<Execution>.from(
map['executions'].map((p) => Execution.fromMap(p))),
);
}