toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final columns = this.columns;
  final elementProperties = this.elementProperties;
  final objectId = this.objectId;
  final rows = this.rows;
  return {
    'columns': ?columns,
    'elementProperties': ?elementProperties,
    'objectId': ?objectId,
    'rows': ?rows,
  };
}