cells property

Generate By General Universe Script Dont edit by hand or anything manual

Implementation

List<List<PageBlockTableCell>> get cells {
  try {
    if (rawData["cells"] is List == false) {
      return [];
    }
    return ((rawData["cells"] as List).cast<List>()).map((e) => e.map((e) => PageBlockTableCell(e as Map)).toList().cast<PageBlockTableCell>()).toList().cast<List<PageBlockTableCell>>();
  } catch (e) {
    return [];
  }
}
set cells (List<List<PageBlockTableCell>> values)

Generate By General Universe Script Dont edit by hand or anything manual

Implementation

set cells(List<List<PageBlockTableCell>> values) {
  rawData["cells"] = values.map((value) => value.map((value) => value.toJson()).toList()).toList();
}