ServiceAccountSpec.fromJson constructor
Implementation
factory ServiceAccountSpec.fromJson(Map<String, dynamic> json) {
return ServiceAccountSpec(
enableCustomServiceAccount: json['enableCustomServiceAccount'] ?? false,
serviceAccount: json['serviceAccount'] ?? '',
);
}