copyWith method

RichMessage copyWith({
  1. List<PageBlock>? blocks,
  2. bool? isRtl,
  3. bool? isFull,
})

Implementation

RichMessage copyWith({List<PageBlock>? blocks, bool? isRtl, bool? isFull}) =>
    RichMessage(
      blocks: blocks ?? this.blocks,
      isRtl: isRtl ?? this.isRtl,
      isFull: isFull ?? this.isFull,
    );