MessageBotWriteAccessAllowed.fromJson constructor

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

Parse from a json

Implementation

factory MessageBotWriteAccessAllowed.fromJson(Map<String, dynamic> json) =>
    MessageBotWriteAccessAllowed(
      webApp:
          json['web_app'] == null ? null : WebApp.fromJson(json['web_app']),
    );