toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final text = this.text;
  final updatedAt = this.updatedAt;
  final updatedBy = this.updatedBy;
  return {
    'Text': text,
    'UpdatedAt': updatedAt,
    'UpdatedBy': updatedBy,
  };
}