copyWith method

OrgTableDividerRow copyWith({
  1. String? indent,
  2. String? content,
  3. String? trailing,
  4. String? id,
})

Implementation

OrgTableDividerRow copyWith({
  String? indent,
  String? content,
  String? trailing,
  String? id,
}) {
  return OrgTableDividerRow(
    indent ?? this.indent,
    content ?? this.content,
    trailing ?? this.trailing,
    id ?? this.id,
  );
}