ForceReply.fromJson constructor

ForceReply.fromJson(
  1. Map<String, dynamic> json
)

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'],
  );
}