FasterDeploymentConfig.fromJson constructor

FasterDeploymentConfig.fromJson(
  1. 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),
    },
  );
}