toJson method

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

Object to Map serializer

Implementation

@override
Map<String, dynamic> toJson() {
  return {
    '@type': 'reportChatPhoto',
    if (extra != null) '@extra': extra,
    'chat_id': chat_id,
    'file_id': file_id,
    'reason': reason,
    'text': text
  };
}