GoogleAppsScriptTypeExecutionApiEntryPoint.fromJson constructor

GoogleAppsScriptTypeExecutionApiEntryPoint.fromJson(
  1. Map json_
)

Implementation

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