SchemaRefreshConfig.fromJson constructor

SchemaRefreshConfig.fromJson(
  1. Map json_
)

Implementation

SchemaRefreshConfig.fromJson(core.Map json_)
    : this(
        useActionDisplayNames: json_.containsKey('useActionDisplayNames')
            ? json_['useActionDisplayNames'] as core.bool
            : null,
        useSynchronousSchemaRefresh:
            json_.containsKey('useSynchronousSchemaRefresh')
                ? json_['useSynchronousSchemaRefresh'] as core.bool
                : null,
      );