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