FasterDeploymentConfig.fromJson constructor
FasterDeploymentConfig.fromJson(
- Object? j
Implementation
factory FasterDeploymentConfig.fromJson(Object? j) {
final json = j as Map<String, Object?>;
return FasterDeploymentConfig(
fastTryoutEnabled: switch (json['fastTryoutEnabled']) {
null => false,
Object $1 => decodeBool($1),
},
);
}