fromJson static method

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

Implementation

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