copyWith method
Implementation
OrgBlock copyWith({
String? indent,
String? header,
OrgNode? body,
String? footer,
String? trailing,
String? id,
}) =>
OrgBlock(
indent ?? this.indent,
header ?? this.header,
body ?? this.body,
footer ?? this.footer,
trailing ?? this.trailing,
id ?? this.id,
);