fromJSON static method

View fromJSON(
  1. Map<String, dynamic> data
)

Implementation

static View fromJSON(Map<String, dynamic> data) {
	return View(
		map: (data["map"] as String),
		reduce: (data["reduce"] as String?),
	);
}