GoogleAppsScriptTypeWebAppEntryPoint.fromJson constructor

GoogleAppsScriptTypeWebAppEntryPoint.fromJson(
  1. Map json_
)

Implementation

GoogleAppsScriptTypeWebAppEntryPoint.fromJson(core.Map json_)
    : this(
        entryPointConfig: json_.containsKey('entryPointConfig')
            ? GoogleAppsScriptTypeWebAppConfig.fromJson(
                json_['entryPointConfig']
                    as core.Map<core.String, core.dynamic>)
            : null,
        url: json_.containsKey('url') ? json_['url'] as core.String : null,
      );