toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final cellLocation = this.cellLocation;
  final fields = this.fields;
  final objectId = this.objectId;
  final style = this.style;
  final textRange = this.textRange;
  return {
    'cellLocation': ?cellLocation,
    'fields': ?fields,
    'objectId': ?objectId,
    'style': ?style,
    'textRange': ?textRange,
  };
}