encode static method

Map<String, dynamic> encode(
  1. RoleConfiguration value
)

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;
}