CubeAxis.fromJson constructor
Implementation
factory CubeAxis.fromJson(Map<String, dynamic> json) {
return CubeAxis(
json['name'],
json['title'],
json['dataType'],
json.containsKey('combination') && json['combination'],
mapSelectionMode(json['selectionMode']));
}