clone method

ParentStyle clone()

Clone object

Parent(
  'some text',
  style: myStyle.clone()
    ..width(100)
    // etc..
)

Implementation

ParentStyle clone() => ParentStyle(angleFormat: angleFormat)..add(this);