humanReadableVariable property

String humanReadableVariable
inherited

for logging or informing the user which variable is missing beneath maps

Implementation

String get humanReadableVariable {
  var ret = parentCollectionsWithVarName.join("'],['");
  if (parentCollectionsWithVarName.length > 1) {
    ret = "['$ret']";
  }
  return ret;
}