GitConfig.fromJson constructor

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

Implementation

factory GitConfig.fromJson(Map<String, dynamic> json) {
  return GitConfig(
    repositoryUrl: json['RepositoryUrl'] as String,
    branch: json['Branch'] as String?,
    secretArn: json['SecretArn'] as String?,
  );
}