SourceCredentialsInfo.fromJson constructor

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

Implementation

factory SourceCredentialsInfo.fromJson(Map<String, dynamic> json) {
  return SourceCredentialsInfo(
    arn: json['arn'] as String?,
    authType: (json['authType'] as String?)?.toAuthType(),
    serverType: (json['serverType'] as String?)?.toServerType(),
  );
}