toJson method

  1. @override
Map<String, dynamic> toJson()

Converts to JSON.

Implementation

@override
Map<String, dynamic> toJson() => {
  'text': text,
  if (thought != null) 'thought': thought,
  if (thoughtSignature != null)
    'thoughtSignature': base64Encode(thoughtSignature!),
};