AwsCodeBuildProjectSource.fromJson constructor

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

Implementation

factory AwsCodeBuildProjectSource.fromJson(Map<String, dynamic> json) {
  return AwsCodeBuildProjectSource(
    gitCloneDepth: json['GitCloneDepth'] as int?,
    insecureSsl: json['InsecureSsl'] as bool?,
    location: json['Location'] as String?,
    type: json['Type'] as String?,
  );
}