copyWith method
Implementation
PermittedOperationsResponseOperationsItem copyWith(
{String? operation, String? targetType}) {
return PermittedOperationsResponseOperationsItem(
operation: operation ?? this.operation,
targetType: targetType ?? this.targetType,
);
}