convertCustomInfoFromWebToDart static method
Implementation
static dynamic convertCustomInfoFromWebToDart(List customInfo) {
final profileCustomInfo = {};
for (var element in customInfo) {
final mapElement = jsToMap(element);
final customInfoKey = mapElement['key'].split('Tag_Profile_Custom_')[1];
profileCustomInfo[customInfoKey] = mapElement['value'];
}
return profileCustomInfo;
}