copyWith method

OrgListUnorderedItem copyWith({
  1. String? indent,
  2. String? bullet,
  3. String? checkbox,
  4. ({String delimiter, OrgContent value})? tag,
  5. OrgContent? body,
  6. String? id,
})

Implementation

OrgListUnorderedItem copyWith({
  String? indent,
  String? bullet,
  String? checkbox,
  ({OrgContent value, String delimiter})? tag,
  OrgContent? body,
  String? id,
}) =>
    OrgListUnorderedItem(
      indent ?? this.indent,
      bullet ?? this.bullet,
      checkbox ?? this.checkbox,
      tag ?? this.tag,
      body ?? this.body,
      id ?? this.id,
    );