copyWith method

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

Implementation

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