ResourcePolicy.fromJson constructor
Implementation
factory ResourcePolicy.fromJson(Map<String, dynamic> json) {
return ResourcePolicy(
lastUpdatedTime: json['lastUpdatedTime'] as int?,
policyDocument: json['policyDocument'] as String?,
policyName: json['policyName'] as String?,
);
}