PageBlockTableCell.fromJson constructor

PageBlockTableCell.fromJson(
  1. Map<String, dynamic> json
)

Parse from a json

Implementation

factory PageBlockTableCell.fromJson(Map<String, dynamic> json) =>
    PageBlockTableCell(
      text: json['text'] == null ? null : RichText.fromJson(json['text']),
      isHeader: json['is_header'],
      colspan: json['colspan'],
      rowspan: json['rowspan'],
      align: PageBlockHorizontalAlignment.fromJson(json['align']),
      valign: PageBlockVerticalAlignment.fromJson(json['valign']),
    );