copyWith method

ItemRemoveResponse copyWith({
  1. String? requestId,
})

Implementation

ItemRemoveResponse copyWith({String? requestId}) {
  return ItemRemoveResponse(requestId: requestId ?? this.requestId);
}