aligned method

DocxParagraph aligned(
  1. DocxAlign newAlign
)

Returns a copy with the specified alignment.

Implementation

DocxParagraph aligned(DocxAlign newAlign) {
  return copyWith(align: newAlign);
}