copyWith method

PermittedOperationsResponseOperationsItem copyWith({
  1. String? operation,
  2. String? targetType,
})

Implementation

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