Valuable.fromJson constructor
Create valuable from json map
Implementation
factory Valuable.fromJson(JsonMap params, {String titleKey = 'name', String valueKey = 'id'}) {
return Valuable.glass(params[titleKey].toString(), params[valueKey].toString());
}