toJson method
Implementation
Map<String, dynamic> toJson() {
final Map<String, dynamic> data = <String, dynamic>{};
data['clientRoleRelId'] = clientRoleRelId;
data['permission'] = permission;
data['createdById'] = createdById;
data['createdDateTime'] = createdDateTime;
data['client'] = client;
data['role'] = role;
data['roleAttribute'] = roleAttribute;
data['clientAttribute'] = clientAttribute;
return data;
}