AwsCodeBuildProjectSource.fromJson constructor
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?,
);
}