copyWith method
Implementation
BooleanPropertySchema copyWith({
Object? title = _acpCopyWithAbsent,
Object? description = _acpCopyWithAbsent,
Object? defaultValue = _acpCopyWithAbsent,
Object? meta = _acpCopyWithAbsent,
}) => BooleanPropertySchema(
title: identical(title, _acpCopyWithAbsent) ? this.title : title as String?,
description: identical(description, _acpCopyWithAbsent)
? this.description
: description as String?,
defaultValue: identical(defaultValue, _acpCopyWithAbsent)
? this.defaultValue
: defaultValue as bool?,
meta: identical(meta, _acpCopyWithAbsent) ? this.meta : meta as AcpJsonMap?,
);