toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final columns = this.columns;
final encoding = this.encoding;
final familyId = this.familyId;
final onlyReadLatest = this.onlyReadLatest;
final protoConfig = this.protoConfig;
final type = this.type;
return {
'columns': ?columns,
'encoding': ?encoding,
'familyId': ?familyId,
'onlyReadLatest': ?onlyReadLatest,
'protoConfig': ?protoConfig,
'type': ?type,
};
}