fromJson static method

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

Creates a object from a json

Implementation

static SentWebAppMessage fromJson(Map<String, dynamic> json) {
  return SentWebAppMessage(
    json['inline_message_id'],
  );
}