toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() => <String, dynamic>{
      'column_count': columnCount,
      'row_count': rowCount,
      'addable': addable,
      'removable': removable,
      'caption': captionLayout?.toJson(),
      'columns': columns.map((e) => e.toJson()).toList(),
      'rows': rows.map((e) => e.toJson()).toList(),
      'footer': footerLayout?.toJson(),
    };