copy method

Property copy()

Creates a copy of this property

Implementation

Property copy() {
  final buffer = StringBuffer();
  render(buffer);
  return Property.parseProperty(buffer.toString());
}