name property

String? get name

Implementation

String? get name
{
  var k = toKey(source, property);
  if (dotnotation != null && dotnotation!.isNotEmpty)
  {
     String dn = "";
     for (var segment in dotnotation!) {
       dn = "$dn.${segment.name}";
     }
     k = "$k$dn";
  }
  return k;
}