copyWith method

BulkEditShareableEntityResponse copyWith({
  1. BulkEditShareableEntityResponseAction? action,
  2. Map<String, dynamic>? entityErrors,
})

Implementation

BulkEditShareableEntityResponse copyWith(
    {BulkEditShareableEntityResponseAction? action,
    Map<String, dynamic>? entityErrors}) {
  return BulkEditShareableEntityResponse(
    action: action ?? this.action,
    entityErrors: entityErrors ?? this.entityErrors,
  );
}