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