copyWith method

ContentPropertyExpandable copyWith({
  1. String? content,
  2. String? additionalProperties,
})

Implementation

ContentPropertyExpandable copyWith(
    {String? content, String? additionalProperties}) {
  return ContentPropertyExpandable(
    content: content ?? this.content,
    additionalProperties: additionalProperties ?? this.additionalProperties,
  );
}