FeatureView_OptimizedConfig.fromJson constructor

FeatureView_OptimizedConfig.fromJson(
  1. Object? j
)

Implementation

factory FeatureView_OptimizedConfig.fromJson(Object? j) {
  final json = j as Map<String, Object?>;
  return FeatureView_OptimizedConfig(
    automaticResources: switch (json['automaticResources']) {
      null => null,
      Object $1 => AutomaticResources.fromJson($1),
    },
  );
}