encode static method
Implementation
static Map<String, dynamic> encode(RoleConfiguration value) {
Map<String, dynamic> entityAsMap = {
"source" : RoleConfigurationSource.encode(value.source),
"roles" : value.roles.map((x0) => x0).toList()
};
return entityAsMap;
}