copyWith method
Implementation
BulkContentStateSetInput copyWith(
{List<String>? ids, ContentStateInput? contentState}) {
return BulkContentStateSetInput(
ids: ids ?? this.ids,
contentState: contentState ?? this.contentState,
);
}
BulkContentStateSetInput copyWith(
{List<String>? ids, ContentStateInput? contentState}) {
return BulkContentStateSetInput(
ids: ids ?? this.ids,
contentState: contentState ?? this.contentState,
);
}