ExperimentalFeatures.fromJson constructor

ExperimentalFeatures.fromJson(
  1. Map json_
)

Implementation

ExperimentalFeatures.fromJson(core.Map json_)
  : this(
      protobufPythonicTypesEnabled:
          json_['protobufPythonicTypesEnabled'] as core.bool?,
      restAsyncIoEnabled: json_['restAsyncIoEnabled'] as core.bool?,
      unversionedPackageDisabled:
          json_['unversionedPackageDisabled'] as core.bool?,
    );