static String nameWithProperty(String name, Layout? lo) { if (lo?.property != null) { return '$name[${lo!.property!}]'; } return name; }