GetContainerPolicyOutput.fromJson constructor

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

Implementation

factory GetContainerPolicyOutput.fromJson(Map<String, dynamic> json) {
  return GetContainerPolicyOutput(
    policy: json['Policy'] as String,
  );
}