GetRoleAttributeResponse.fromJson constructor
Implementation
GetRoleAttributeResponse.fromJson(Map<String, dynamic> json) {
if (json['attribute'] != null) {
attribute = [];
json['attribute'].forEach((v) {
attribute!.add(RoleAttribute.fromJson(v));
});
}
}