toJson method

Map<String, dynamic> toJson()

Implementation

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