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