copyWith method

ContentTemplateExpandable copyWith({
  1. String? body,
})

Implementation

ContentTemplateExpandable copyWith({String? body}) {
  return ContentTemplateExpandable(
    body: body ?? this.body,
  );
}