GoogleAppsScriptTypeAddOnEntryPoint.fromJson constructor

GoogleAppsScriptTypeAddOnEntryPoint.fromJson(
  1. Map json_
)

Implementation

GoogleAppsScriptTypeAddOnEntryPoint.fromJson(core.Map json_)
  : this(
      addOnType: json_['addOnType'] as core.String?,
      description: json_['description'] as core.String?,
      helpUrl: json_['helpUrl'] as core.String?,
      postInstallTipUrl: json_['postInstallTipUrl'] as core.String?,
      reportIssueUrl: json_['reportIssueUrl'] as core.String?,
      title: json_['title'] as core.String?,
    );