PythonSettings_ExperimentalFeatures.fromJson constructor

PythonSettings_ExperimentalFeatures.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory PythonSettings_ExperimentalFeatures.fromJson(
  Map<String, dynamic> json,
) {
  return PythonSettings_ExperimentalFeatures(
    restAsyncIoEnabled: json['restAsyncIoEnabled'] ?? false,
    protobufPythonicTypesEnabled:
        json['protobufPythonicTypesEnabled'] ?? false,
    unversionedPackageDisabled: json['unversionedPackageDisabled'] ?? false,
  );
}