toJson method

Map<String, dynamic> toJson()

Creates a JSON object from the Bot Short Description object.

Implementation

Map<String, dynamic> toJson() {
  return {
    'short_description': shortDescription,
  };
}