copyWith method

BulkContentStateSetInput copyWith({
  1. List<String>? ids,
  2. ContentStateInput? contentState,
})

Implementation

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