toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final expireTime = this.expireTime;
final index = this.index;
final keys = this.keys;
final table = this.table;
return {
'expireTime': ?expireTime,
'index': ?index,
'keys': ?keys,
'table': ?table,
};
}