toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final contextSize = this.contextSize;
  final currentTextInput = this.currentTextInput;
  final latestMessage = this.latestMessage;
  return {
    'contextSize': ?contextSize,
    'currentTextInput': ?currentTextInput,
    'latestMessage': ?latestMessage,
  };
}