ResourcePolicy.fromJson constructor

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

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?,
  );
}