ForceReply.fromJson constructor
Creates a ForceReply object from json.
Implementation
factory ForceReply.fromJson(Map<String, dynamic> json) {
return ForceReply(
forceReply: json['force_reply'],
selective: json['selective'],
inputFieldPlaceholder: json['input_field_placeholder'],
);
}